home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / netclb23 / file.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-20  |  614 b   |  18 lines

  1. #ifndef FILE_H
  2. #define FILE_H
  3.  
  4. /****************************/
  5. /* File Services prototypes */
  6. /****************************/
  7.  
  8. int EraseFiles( byte searchAttributes,byte directoryHandle,char *filePath);
  9. int PurgeAllErasedFiles(void);
  10. int PurgeErasedFiles(void);
  11. int ScanFileInformation(byte directoryHandle, char *filePath,
  12.      byte searchAttributes,int *sequenceNumber,char *fileName,
  13.      byte *fileAttributes,byte *extendedFileAttributes,long *fileSize,
  14.      char *creationDate,char *lastAccessDate,char *lastUpdateDateAndTime,
  15.      char *lastArchiveDateAndTime,long *fileOwnerId);
  16.      
  17. #endif
  18.